What is the `name` keyword in JavaScript?
Posted
by Joey Adams
on Stack Overflow
See other posts from Stack Overflow
or by Joey Adams
Published on 2010-04-18T20:02:53Z
Indexed on
2010/04/18
20:13 UTC
Read the original article
Hit count: 445
When I typed this apparently innocent snippet of code:
values.name
gedit highlighted name as a keyword. However, name is not listed by the pages linked to by an answer to a question about reserved keywords. I also did a couple trivial tests in SpiderMonkey, but name seemed to act like an ordinary identifier.
A Google search didn't tell me much either. However, I did find a page listing name in "Other JavaScript Keywords". My guess is that name is a function or a member of some DOM element and does not intrude on the namespace.
Is name really a keyword in JavaScript? If so, what does it do?
© Stack Overflow or respective owner